home *** CD-ROM | disk | FTP | other *** search
/ Champak 138 / Volume 138 Aug 19 2011 - Damaged.iso / Games / shadez.swf / scripts / Local / Game / Thing / CEffectExplosionMedium.as < prev    next >
Encoding:
Text File  |  2011-08-19  |  437 b   |  18 lines

  1. package Local.Game.Thing
  2. {
  3.    import Local.Game.World.CPosition;
  4.    
  5.    public class CEffectExplosionMedium extends CEffectExplosion
  6.    {
  7.        
  8.       
  9.       public function CEffectExplosionMedium(param1:CPosition, param2:Number = 100, param3:int = -1)
  10.       {
  11.          if(true)
  12.          {
  13.             super("explosionmedium",param1,0.9,param2,param3 == -1 ? int(Math.random() * 3) : param3);
  14.          }
  15.       }
  16.    }
  17. }
  18.